crypto/internal/fips140/aes/gcm.gcmFieldElement.low (field)

15 uses

	crypto/internal/fips140/aes/gcm (current package)
		ghash.go#L21: 	low, high uint64
		ghash.go#L64: 	byteorder.BEPutUint64(out[:], y.low)
		ghash.go#L78: 	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
		ghash.go#L87: 	double.high |= x.low << 63
		ghash.go#L88: 	double.low = x.low >> 1
		ghash.go#L98: 		double.low ^= 0xe100000000000000
		ghash.go#L116: 			word = y.low
		ghash.go#L124: 			z.high |= z.low << 60
		ghash.go#L125: 			z.low >>= 4
		ghash.go#L126: 			z.low ^= uint64(ghashReductionTable[msw]) << 48
		ghash.go#L132: 			z.low ^= t.low
		ghash.go#L145: 		y.low ^= byteorder.BEUint64(blocks)